2008-02-12 Matthias Clasen <mclasne@redhat.com>
* gdk-pixbuf-io.c (at_scale_size_prepared_cb): Don't let
the width or height go below 1. (#516024, Christian Persch)
svn path=/trunk/; revision=19534
+2008-02-12 Matthias Clasen <mclasne@redhat.com>
+
+ * gdk-pixbuf-io.c (at_scale_size_prepared_cb): Don't let
+ the width or height go below 1. (#516024, Christian Persch)
+
2008-02-10 Matthias Clasen <mclasne@redhat.com>
* gdk-pixbuf-scaled-anim.c: Try harder to return pixbufs
height = info->height;
}
+ width = MAX (width, 1);
+ height = MAX (height, 1);
+
gdk_pixbuf_loader_set_size (loader, width, height);
}